home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / CALLOC.C < prev    next >
Text File  |  1997-01-12  |  307b  |  12 lines

  1. /*
  2. ** Cleared-memory allocation of n items of size bytes.
  3. ** n     = Number of items to allocate space for.
  4. ** size  = Size of the items in bytes.
  5. ** Returns the address of the allocated block,
  6. ** else NULL for failure.
  7. */
  8. calloc(n, size) unsigned n, size; {
  9.   return (_alloc(n*size, YES));
  10.   }
  11.  
  12.